home *** CD-ROM | disk | FTP | other *** search
/ Digital Photo Book 16: Sister 7 / Digital Photo Book 16: Sister 7.iso / mac / DATA / main.dir / 00006_Script_CLICKURL < prev    next >
Text File  |  2004-11-21  |  282b  |  15 lines

  1. property link_url
  2.  
  3. on mouseUp
  4.   gotonetpage link_url
  5. end
  6.  
  7. on getPropertyDescriptionList
  8.   p = [:]
  9.   p[#link_url] = [:]
  10.   p[#link_url][#comment] = "URL" 
  11.   p[#link_url][#format] = #string
  12.   p[#link_url][#default] = "http://"
  13.   
  14.   return p
  15. end getPropertyDescriptionList